home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 12 / BBS in a box XII-2.iso / Files II / Prog / T / TransSkel 3.11.sit / TransSkel v 3.11 / Convenience / Dialog Item Stuff / SkelSetDlogProc.c / SkelSetDlogProc.c
Encoding:
C/C++ Source or Header  |  1994-02-20  |  277 b   |  19 lines  |  [TEXT/KAHL]

  1. /*
  2.  * Set procedure associated with dialog user item.
  3.  */
  4.  
  5.  
  6. # include    "TransSkel.h"
  7.  
  8.  
  9. pascal void
  10. SkelSetDlogProc (DialogPtr d, short item, SkelDlogItemProcPtr p)
  11. {
  12. short    type;
  13. Handle    h;
  14. Rect    r;
  15.  
  16.     GetDItem (d, item, &type, &h, &r);
  17.     SetDItem (d, item, type, (Handle) p, &r);
  18. }
  19.